home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 088 / wcflager.arc / WCFLAGER.DOC < prev   
Encoding:
Text File  |  1987-05-14  |  6.4 KB  |  259 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.                          A WILDCAT! BBS FILE UTILITY
  23.  
  24.                                    WCFLAGER
  25.  
  26.                                  Version  1.00
  27.  
  28.  
  29.                    (C) COPYRIGHT  1987 - All Rights Reserved
  30.  
  31.                                       by
  32.  
  33.                               DEREK L. KOOPOWITZ
  34.                           Decor Computer Consultants
  35.                                 881 Oxford Way
  36.                              Benicia,  Ca.  94510
  37.  
  38.                             Work #  (707) 746-1615
  39.                             Data #  (707) 746-5820
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.    WILDCAT! is copyrighted by MUSTANG SOFTWARE, Bakersfield, CA  93301-3118
  61.  
  62.  
  63.  
  64. SHAREWARE POLICY
  65. ----------------
  66.  
  67. WCFLAGER (Version 1.00) is distributed under the Shareware concept.  You
  68. can distribute this program any way you wish, except you cannot sell it.
  69. If you find the program useful, you are encouraged to make payment of
  70. $10.00 to DEREK KOOPOWITZ at Decor Computer Consultants which will encourage
  71. the development of enhancements and additional utilities for WILDCAT!
  72. The latest version of WCFLAGER will always be available on the Decor
  73. Computer Consultants BBS.
  74.  
  75.  
  76.  
  77. SYSTEM REQUIREMENTS
  78. -------------------
  79.  
  80. IBM or compatible computer
  81. Mono or color display
  82. WILDCAT! BBS
  83.  
  84. NOTE: WCFLAGER will run as a WILDCAT! external event.
  85.  
  86.  
  87.  
  88. LIMITED WARRANTY
  89. ----------------
  90.  
  91. THIS PROGRAM IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
  92. EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
  93. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE WITH RESPECT TO
  94. DEFECTS IN THE PROGRAM OR DOCUMENTATION.  THE AUTHOR, DEREK KOOPOWITZ,
  95. ASSUMES NO RISK AS TO QUALITY AND PERFORMANCE OF THE PROGRAM.  SHOULD THE
  96. PROVE DEFECTIVE,  YOU ASSUME THE ENTIRE COST OF ANY LOSS OF PROFIT OR ANY
  97. OTHER COMMERCIAL DAMAGE.  SOME STATES DO NOT ALLOW THE EXCLUSION OF IMPLIED
  98. WARRANTIES SO THE ABOVE EXCLUSION MAY NOT APPLY TO YOU.
  99.  
  100.  
  101.  
  102. COPYRIGHT
  103. ---------
  104.  
  105. Regardless of the method of marketing used, WCFLAGER is NOT in the
  106. "Public Domain". It is copyrighted by Decor Computer Consultants.  However,
  107. we grant you the right, and in fact encourage you to make and distribute
  108. as many copies as you wish, using any acceptable medium of exchange, with
  109. the following restrictions:
  110.  
  111.  
  112. DO NOT....
  113.  
  114. 1.  Distribute the Program without this documentation;
  115. 2.  Accept remuneration for the program;
  116. 3.  Alter the program in any manner.
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. This program will allow you to change the settings of three (3) flags
  124. that are displayed on the WILDCAT! system screen.  The flags are:
  125.  
  126.       o   Pager is      -  Off/On
  127.       o   Page Bell is  -  Off/On
  128.       o   Printer is    -  Off/On
  129.  
  130.  
  131. There are two ways of changing the flags.  Either by entering the flags
  132. on the command line (ie.  WCFLAGER Y Y N), or by changing the values of
  133. the flags after they are displayed by WCFLAGER.
  134.  
  135.  
  136. METHOD 1 :   WCFLAGER Y Y Y    where the  First Y  is the Pager Flag
  137. --------                                 Second Y  is the Page Bell Flag
  138.                                           Third Y  is the Printer Flag
  139.  
  140.  
  141. This method of changing the flags is to be used if you run WCFLAGER as
  142. an external event from WILDCAT!  This would allow you to turn the flags
  143. Off or On at any time of day/evening.  IE - If you are not home during
  144. the day then run WCFLAGER to turn off the Pager and Page Bell Flags at
  145. the time that you usually go to bed (11:00 pm), and then turn them on
  146. again when you return home (6:00 pm).  That means that you will need to
  147. have two (2) external events and two (2) BAT files; one to turn the flags
  148. off and one to turn them on again.
  149.  
  150.  
  151.  
  152. The following is an example of a BAT file to turn the flags OFF.
  153.  
  154. ECHO OFF
  155. CD\WILDCAT!                   REM  YOU MUST BE IN THE WILDCAT! SUB-DIRECTORY
  156. WCFLAGER N N N                REM  TO RUN WCFLAGER
  157. WAITUNTL 22:01:00
  158. CAT.BAT
  159.  
  160.  
  161.  
  162. The following is an example of a BAT file to turn the flags ON.
  163.  
  164. ECHO OFF
  165. CD\WILDCAT!
  166. WCFLAGER Y Y N            REM Note that you can turn some On and some
  167. WAITUNTL 18:01:00         REM Off
  168. CAT.BAT
  169.  
  170.  
  171. NOTE:  You will need to pause the BAT file for the length of the external
  172. ----   event so that it does not return to WILDCAT! until the length of
  173.        the external event window has been passed.  I have included the
  174.        utility WAITUNTL.COM with WCFLAGER so that you can pause the BAT
  175.        file until a certain time.  The command for WAITUNTL is:
  176.  
  177.             WAITUNTL hh:mm:ss   -  hh:mm:ss is the time you want to
  178.                                    restart the BAT file.
  179.  
  180.  
  181.  
  182.  
  183.  
  184. METHOD 2 :   Type WCFLAGER at the DOS prompt and then after the first
  185. --------     screen is displayed, press any key to continue or press the
  186.              ESC key to abort the update.  When the next screen is displayed,
  187.              it will show the current settings of the flags.  You can
  188.              change the settings of the flags at this point and then press
  189.              the F10 key to update the Configuration File or you can press
  190.              the ESC key to abort the update.
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197. Future enhancements to be provided for WCFLAGER are:
  198.  
  199.     o   Pause of BAT file from within WCFLAGER, where you can specify
  200.         the length in minutes to pause
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207. TECHNICAL SUPPORT
  208. -----------------
  209.  
  210. Comments and suggestions about WCFLAGER are welcome, as well as any
  211. comments or suggestions that you may have or want in terms of additional
  212. utilities that you want to see written.  Please call Decor Computer
  213. Consultants BBS at  707-746-5820 and leave me a message.  We are running
  214. WILDCAT! and can also provide assistance in other areas too.  I can also
  215. be reached on MUSTANG SOFTWARE's BBS (creators of WILDCAT!).
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.                  --- WCFLAGER REGISTRATION FORM ---
  226.  
  227.  
  228.         Name    : ___________________________________________
  229.  
  230.         BBS Name: ___________________________________________
  231.  
  232.         Address : ___________________________________________
  233.  
  234.         City    : ________________  State: ___  Zip: _________
  235.  
  236.         Telephone (voice): (____) ____-_______
  237.  
  238.         Telephone (DATA) : (____) ____-_______
  239.  
  240.         Version : _______
  241.  
  242.         Comments:
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.         Mail to:                 DEREK L. KOOPOWITZ
  254.                                  881 Oxford Way
  255.                                  Benicia
  256.                                  Ca.  94510
  257.  
  258.  
  259.